3cccf00f75def8bbc2e00c3ec16d7a7d5cb539db,core/src/test/java/brooklyn/entity/basic/AbstractApplicationLegacyTest.java,AbstractApplicationLegacyTest,setUp,#,48

Before Change


    @Override
    public void setUp() throws Exception {
        super.setUp();
        locs = ImmutableList.of(new SimulatedLocation());
    }
    
    // App and its children will be implicitly managed on first effector call on app

After Change


    @Override
    public void setUp() throws Exception {
        super.setUp();
        loc = mgmt.getLocationManager().createLocation(LocationSpec.create(SimulatedLocation.class));
        locs = ImmutableList.of(loc);
    }
    
    // App and its children will be implicitly managed on first effector call on app